home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Programming / AmigaTalk / ARexxScripts / Kill.rexx < prev   
OS/2 REXX Batch file  |  2000-05-07  |  366b  |  20 lines

  1. /*************************************************************
  2. * Kill.rexx Instruct the ARexxManager for AmigaTalk to quit.
  3. **************************************************************
  4. *
  5. */
  6.  
  7. Options FailAt 5
  8.  
  9. if ~show( 'l', "rexxsupport.library" ) then do
  10.    check = addlib( 'rexxsupport.library', 0, -30, 0 )
  11. end
  12.  
  13. ADDRESS "AmigaTalk_Rexx"
  14.  
  15. Do
  16.  
  17.    'Quit'
  18.  
  19. RETURN 
  20.